Version

transform(Single[],Int32[],Int32) Method

Transform nvert points from v into tv using this matrix.
Syntax
'Declaration
 
Public Overloads Sub transform( _
   ByVal v() As Single, _
   ByVal tv() As Integer, _
   ByVal nvert As Integer _
) 
public void transform( 
   float[] v,
   int[] tv,
   int nvert
)

Parameters

v
The original array of points. Three successive entries in this array constitute a single point.
tv
The resulting array of points. After this method is completed, tv will contain the transformed point. tv should have a length equal to that of v.
nvert
The count of points to transform. Should be = v.Length/3 if v is being transformed from beginning to end.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also